home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctutor2 / firstex.c < prev    next >
Text File  |  1986-01-25  |  128b  |  8 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    for (index = 0;index < 7;index++)
  6.       printf("First example program.\n");
  7. }
  8.